3
How do I change the control's font

With Slider1
	.ThumbSize = 32
	.Font.Name = "Tahoma"
	.ForeColor = RGB(255,0,0)
	.Caption(256) = "thumb"
End With
2
How can I change the control's foreground color

With Slider1
	.ForeColor = RGB(255,0,0)
	.ThumbSize = 32
	.Caption(256) = "thumb"
End With
1
How can I change the control's background color

With Slider1
	.BackColor = RGB(0,255,0)
End With